HTMLify
style.css
Views: 6 | Author: cody
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
background: #141414;
cursor: none;
font-family: "poppins";
}
.cursor-dot {
height: 5px;
width: 5px;
border-radius: 50%;
background-color: #50d890;
}
.cursor-outline {
height: 25px;
width: 25px;
border-radius: 50%;
border: 2px solid #50d890;
}
.cursor-dot,
.cursor-outline {
position: fixed;
top: 0;
left: 0;
transform: translate(-50%, -50%);
z-index: 1;
pointer-events: none;
}